12#ifndef AOM_AV1_ENCODER_SPEED_FEATURES_H_
13#define AOM_AV1_ENCODER_SPEED_FEATURES_H_
16#include "av1/encoder/enc_enums.h"
17#include "av1/encoder/mcomp.h"
18#include "av1/encoder/encodemb.h"
27#define MAX_MESH_STEP 4
29typedef struct MESH_PATTERN {
36 GM_REDUCED_REF_SEARCH_SKIP_L2_L3,
37 GM_REDUCED_REF_SEARCH_SKIP_L2_L3_ARF2,
41 GM_SEARCH_CLOSEST_REFS_ONLY,
44} UENUM1BYTE(GM_SEARCH_TYPE);
47 DIST_WTD_COMP_ENABLED,
48 DIST_WTD_COMP_SKIP_MV_SEARCH,
49 DIST_WTD_COMP_DISABLED,
50} UENUM1BYTE(DIST_WTD_COMP_FLAG);
53 INTRA_ALL = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << D45_PRED) |
54 (1 << D135_PRED) | (1 << D113_PRED) | (1 << D157_PRED) |
55 (1 << D203_PRED) | (1 << D67_PRED) | (1 << SMOOTH_PRED) |
56 (1 << SMOOTH_V_PRED) | (1 << SMOOTH_H_PRED) | (1 << PAETH_PRED),
58 (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED) |
59 (1 << UV_D45_PRED) | (1 << UV_D135_PRED) | (1 << UV_D113_PRED) |
60 (1 << UV_D157_PRED) | (1 << UV_D203_PRED) | (1 << UV_D67_PRED) |
61 (1 << UV_SMOOTH_PRED) | (1 << UV_SMOOTH_V_PRED) |
62 (1 << UV_SMOOTH_H_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
63 UV_INTRA_DC = (1 << UV_DC_PRED),
64 UV_INTRA_DC_CFL = (1 << UV_DC_PRED) | (1 << UV_CFL_PRED),
65 UV_INTRA_DC_TM = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED),
66 UV_INTRA_DC_PAETH_CFL =
67 (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) | (1 << UV_CFL_PRED),
68 UV_INTRA_DC_H_V = (1 << UV_DC_PRED) | (1 << UV_V_PRED) | (1 << UV_H_PRED),
69 UV_INTRA_DC_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_V_PRED) |
70 (1 << UV_H_PRED) | (1 << UV_CFL_PRED),
71 UV_INTRA_DC_PAETH_H_V = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
72 (1 << UV_V_PRED) | (1 << UV_H_PRED),
73 UV_INTRA_DC_PAETH_H_V_CFL = (1 << UV_DC_PRED) | (1 << UV_PAETH_PRED) |
74 (1 << UV_V_PRED) | (1 << UV_H_PRED) |
76 INTRA_DC = (1 << DC_PRED),
77 INTRA_DC_TM = (1 << DC_PRED) | (1 << PAETH_PRED),
78 INTRA_DC_H_V = (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED),
80 (1 << DC_PRED) | (1 << V_PRED) | (1 << H_PRED) | (1 << SMOOTH_PRED),
82 (1 << DC_PRED) | (1 << PAETH_PRED) | (1 << V_PRED) | (1 << H_PRED)
86 INTER_ALL = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
87 (1 << NEWMV) | (1 << NEAREST_NEARESTMV) | (1 << NEAR_NEARMV) |
88 (1 << NEW_NEWMV) | (1 << NEAREST_NEWMV) | (1 << NEAR_NEWMV) |
89 (1 << NEW_NEARMV) | (1 << NEW_NEARESTMV) | (1 << GLOBAL_GLOBALMV),
90 INTER_NEAREST_NEAR_ZERO = (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) |
91 (1 << NEAREST_NEARESTMV) | (1 << GLOBAL_GLOBALMV) |
92 (1 << NEAREST_NEWMV) | (1 << NEW_NEARESTMV) |
93 (1 << NEW_NEARMV) | (1 << NEAR_NEWMV) |
96 (1 << NEARESTMV) | (1 << NEARMV) | (1 << GLOBALMV) | (1 << NEWMV),
100 DISABLE_ALL_INTER_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
101 (1 << THR_ALTR) | (1 << THR_GOLD) | (1 << THR_LAST),
103 DISABLE_ALL_SPLIT = (1 << THR_INTRA) | DISABLE_ALL_INTER_SPLIT,
105 DISABLE_COMPOUND_SPLIT = (1 << THR_COMP_GA) | (1 << THR_COMP_LA),
107 LAST_AND_INTRA_SPLIT_ONLY = (1 << THR_COMP_GA) | (1 << THR_COMP_LA) |
108 (1 << THR_ALTR) | (1 << THR_GOLD)
120} UENUM1BYTE(DEV_SPEED_FEATURES);
133 ALLOW_RECODE_KFARFGF = 1,
138} UENUM1BYTE(RECODE_LOOP_TYPE);
142 SUBPEL_TREE_PRUNED = 1,
143 SUBPEL_TREE_PRUNED_MORE = 2,
144 SUBPEL_SEARCH_METHODS
145} UENUM1BYTE(SUBPEL_SEARCH_METHOD);
149 LPF_PICK_FROM_FULL_IMAGE,
151 LPF_PICK_FROM_FULL_IMAGE_NON_DUAL,
153 LPF_PICK_FROM_SUBIMAGE,
158} UENUM1BYTE(LPF_PICK_METHOD);
180 FLAG_EARLY_TERMINATE = 1 << 0,
183 FLAG_SKIP_COMP_BESTINTRA = 1 << 1,
186 FLAG_SKIP_INTRA_BESTINTER = 1 << 3,
190 FLAG_SKIP_INTRA_DIRMISMATCH = 1 << 4,
193 FLAG_SKIP_INTRA_LOWVAR = 1 << 5,
194} UENUM1BYTE(MODE_SEARCH_SKIP_LOGIC);
208} UENUM1BYTE(TX_TYPE_PRUNE_MODE);
216 FAST_DETECTION_MAXQ = 1,
217} UENUM1BYTE(OVERSHOOT_DETECTION_CBR);
223 MULTI_WINNER_MODE_OFF = 0,
226 MULTI_WINNER_MODE_FAST = 1,
230 MULTI_WINNER_MODE_DEFAULT = 2,
233 MULTI_WINNER_MODE_LEVELS,
234} UENUM1BYTE(MULTI_WINNER_MODE_TYPE);
237 PRUNE_NEARMV_OFF = 0,
238 PRUNE_NEARMV_LEVEL1 = 1,
239 PRUNE_NEARMV_LEVEL2 = 2,
240 PRUNE_NEARMV_LEVEL3 = 3,
241 PRUNE_NEARMV_MAX = PRUNE_NEARMV_LEVEL3,
242} UENUM1BYTE(PRUNE_NEARMV_LEVEL);
248 TX_SEARCH_DEFAULT = 0,
250 TX_SEARCH_MOTION_MODE,
252 TX_SEARCH_COMP_TYPE_MODE,
255} UENUM1BYTE(TX_SEARCH_CASE);
258 TX_TYPE_PRUNE_MODE prune_2d_txfm_mode;
259 int fast_intra_tx_type_search;
266 int fast_inter_tx_type_prob_thresh;
270 int use_reduced_intra_txset;
274 int use_skip_flag_prediction;
277 int ml_tx_split_thresh;
284 int prune_tx_type_using_stats;
286 int prune_tx_type_est_rd;
292 int winner_mode_tx_type_pruning;
305#if CONFIG_RT_ML_PARTITIONING
309} UENUM1BYTE(PARTITION_SEARCH_TYPE);
316} UENUM1BYTE(MAX_PART_PRED_MODE);
322} UENUM1BYTE(MV_PREC_LOGIC);
328} UENUM1BYTE(SUPERRES_AUTO_SEARCH_TYPE);
521typedef struct TPL_SPEED_FEATURES {
529 int gop_length_decision_method;
533 int prune_intra_modes;
535 int reduce_first_step_size;
542 int skip_alike_starting_mv;
545 SUBPEL_FORCE_STOP subpel_force_stop;
548 SEARCH_METHODS search_method;
551 int prune_starting_mv;
554 int prune_ref_frames_in_tpl;
557 int allow_compound_pred;
560 int use_y_only_rate_distortion;
569 int use_sad_for_mode_decision;
573 int reduce_num_frames;
576typedef struct GLOBAL_MOTION_SPEED_FEATURES {
577 GM_SEARCH_TYPE gm_search_type;
582 int prune_ref_frame_for_gm_search;
593 int disable_gm_search_based_on_stats;
596 int downsample_level;
599 int num_refinement_steps;
603 int gm_erroradv_tr_level;
604} GLOBAL_MOTION_SPEED_FEATURES;
606typedef struct PARTITION_SPEED_FEATURES {
607 PARTITION_SEARCH_TYPE partition_search_type;
610 BLOCK_SIZE fixed_partition_size;
616 int prune_ext_partition_types_search_level;
619 int prune_part4_search;
623 int ml_prune_partition;
628 int ml_early_term_after_part_split_level;
633 int less_rectangular_check_level;
636 BLOCK_SIZE use_square_partition_only_threshold;
641 MAX_PART_PRED_MODE auto_max_partition_based_on_simple_motion;
645 BLOCK_SIZE default_min_partition_size;
646 BLOCK_SIZE default_max_partition_size;
652 int adjust_var_based_rd_partitioning;
655 int64_t partition_search_breakout_dist_thr;
656 int partition_search_breakout_rate_thr;
659 int ml_partition_search_breakout_thresh[PARTITION_BLOCK_SIZES];
665 int simple_motion_search_prune_agg;
669 int simple_motion_search_prune_rect;
676 int simple_motion_search_split;
680 int simple_motion_search_early_term_none;
686 int simple_motion_search_reduce_search_steps;
691 BLOCK_SIZE max_intra_bsize;
698 int intra_cnn_based_part_prune_level;
702 BLOCK_SIZE ext_partition_eval_thresh;
705 int ext_part_eval_based_on_cur_best;
708 int rect_partition_eval_thresh;
715 int prune_ext_part_using_split_info;
721 int prune_rectangular_split_based_on_qidx;
733 bool prune_rect_part_using_4x4_var_deviation;
755 bool prune_rect_part_using_none_pred_mode;
759 int early_term_after_none_split;
765 int ml_predict_breakout_level;
771 int prune_sub_8x8_partition_level;
775 int simple_motion_search_rect_split;
808 int reuse_prev_rd_results_for_part_ab;
812 int reuse_best_prediction_for_part_ab;
822 int use_best_rd_for_pruning;
830 int skip_non_sq_part_based_on_none;
833 int disable_8x8_part_based_on_qidx;
834} PARTITION_SPEED_FEATURES;
836typedef struct MV_SPEED_FEATURES {
838 SEARCH_METHODS search_method;
844 int use_bsize_dependent_search_method;
848 int auto_mv_step_size;
854 SUBPEL_SEARCH_METHOD subpel_search_method;
857 int subpel_iters_per_step;
860 SUBPEL_FORCE_STOP subpel_force_stop;
863 SUBPEL_FORCE_STOP simple_motion_subpel_force_stop;
867 SUBPEL_SEARCH_TYPE use_accurate_subpel_search;
870 int exhaustive_searches_thresh;
873 MESH_PATTERN mesh_patterns[MAX_MESH_STEP];
876 MESH_PATTERN intrabc_mesh_patterns[MAX_MESH_STEP];
879 int reduce_search_range;
885 int use_fullpel_costlist;
890 int obmc_full_pixel_search_level;
893 int full_pixel_search_level;
909 int use_downsampled_sad;
912 int disable_extensive_joint_motion_search;
918 int disable_second_mv;
924 int skip_fullpel_search_using_startmv;
928 WARP_SEARCH_METHOD warp_search_method;
931 int warp_search_iters;
934typedef struct INTER_MODE_SPEED_FEATURES {
941 int inter_mode_rd_model_estimation;
947 int txfm_rd_gate_level[TX_SEARCH_CASES];
950 int reduce_inter_modes;
954 int adaptive_rd_thresh;
957 int prune_inter_modes_if_skippable;
962 int selective_ref_frame;
968 int prune_ref_frame_for_rect_partitions;
974 int alt_ref_search_fp;
980 int prune_single_ref;
991 int prune_comp_ref_frames;
1005 int skip_newmv_in_drl;
1011 int skip_repeated_ref_mv;
1014 int perform_best_rd_based_gating_for_chroma;
1018 int reuse_inter_intra_mode;
1022 int prune_comp_type_by_model_rd;
1026 int prune_comp_type_by_comp_avg;
1034 int prune_comp_search_by_single_result;
1039 int prune_mode_search_simple_translation;
1044 int prune_compound_using_single_ref;
1053 int prune_ext_comp_using_neighbors;
1056 int skip_ext_comp_nearmv_mode;
1063 int prune_comp_using_best_single_mode_ref;
1069 int prune_nearest_near_mv_using_refmv_weight;
1072 int prune_ref_mv_idx_search;
1075 int disable_onesided_comp;
1079 int prune_obmc_prob_thresh;
1082 int prune_warped_prob_thresh;
1085 unsigned int disable_interintra_wedge_var_thresh;
1088 unsigned int disable_interinter_wedge_var_thresh;
1091 int fast_interintra_wedge_search;
1094 int fast_wedge_sign_estimate;
1097 int disable_interinter_wedge_newmv_search;
1100 DIST_WTD_COMP_FLAG use_dist_wtd_comp_flag;
1114 int prune_inter_modes_based_on_tpl;
1118 PRUNE_NEARMV_LEVEL prune_nearmv_using_neighbors;
1123 int model_based_post_interp_filter_breakout;
1128 int reuse_compound_type_decision;
1131 int disable_masked_comp;
1147 int enable_fast_compound_mode_search;
1150 int reuse_mask_search_results;
1153 int enable_fast_wedge_mask_search;
1156 int inter_mode_txfm_breakout;
1162 int limit_inter_mode_cands;
1166 int limit_txfm_eval_per_mode;
1169 int extra_prune_warped;
1180 int skip_arf_compound;
1181} INTER_MODE_SPEED_FEATURES;
1183typedef struct INTERP_FILTER_SPEED_FEATURES {
1186 int use_fast_interpolation_filter_search;
1189 int disable_dual_filter;
1194 int use_interp_filter;
1198 int skip_sharp_interp_filter_search;
1201 int cb_pred_filter_search;
1204 int adaptive_interp_filter_search;
1208 int skip_interp_filter_search;
1209} INTERP_FILTER_SPEED_FEATURES;
1211typedef struct INTRA_MODE_SPEED_FEATURES {
1214 int intra_y_mode_mask[TX_SIZES];
1215 int intra_uv_mode_mask[TX_SIZES];
1218 int skip_intra_in_interframe;
1224 int intra_pruning_with_hog;
1230 int chroma_intra_pruning_with_hog;
1233 int disable_smooth_intra;
1244 bool prune_smooth_intra_mode_for_chroma;
1250 int prune_filter_intra_level;
1259 int prune_palette_search_level;
1279 int prune_luma_palette_size_search_level;
1285 int prune_chroma_modes_using_luma_winner;
1301 int cfl_search_range;
1306 int top_intra_model_count_allowed;
1310 int adapt_top_model_rd_count_using_neighbors;
1320 int prune_luma_odd_delta_angles_in_intra;
1332 int early_term_chroma_palette_size_search;
1336 int skip_filter_intra_in_inter_frames;
1337} INTRA_MODE_SPEED_FEATURES;
1339typedef struct TX_SPEED_FEATURES {
1343 int inter_tx_size_search_init_depth_sqr;
1344 int inter_tx_size_search_init_depth_rect;
1345 int intra_tx_size_search_init_depth_sqr;
1346 int intra_tx_size_search_init_depth_rect;
1350 int tx_size_search_lgr_block;
1352 TX_TYPE_SEARCH tx_type_search;
1362 int adaptive_txb_search_level;
1367 int model_based_prune_tx_search_level;
1370 int refine_fast_tx_search_results;
1375 int prune_tx_size_level;
1386 bool prune_intra_tx_depths_using_nn;
1401 bool use_rd_based_breakout_for_intra_tx_search;
1404typedef struct RD_CALC_SPEED_FEATURES {
1406 int simple_model_rd_from_var;
1430 int tx_domain_dist_level;
1433 int tx_domain_dist_thres_level;
1436 TRELLIS_OPT_TYPE optimize_coefficients;
1443 int perform_coeff_opt;
1444} RD_CALC_SPEED_FEATURES;
1446typedef struct WINNER_MODE_SPEED_FEATURES {
1449 int enable_winner_mode_for_coeff_opt;
1453 int enable_winner_mode_for_tx_size_srch;
1461 int tx_size_search_level;
1465 int enable_winner_mode_for_use_tx_domain_dist;
1468 MULTI_WINNER_MODE_TYPE multi_winner_mode_type;
1473 int motion_mode_for_winner_cand;
1480 int dc_blk_pred_level;
1485 int winner_mode_ifs;
1499 int prune_winner_mode_eval_level;
1500} WINNER_MODE_SPEED_FEATURES;
1502typedef struct LOOP_FILTER_SPEED_FEATURES {
1504 LPF_PICK_METHOD lpf_pick;
1508 int use_coarse_filter_level_search;
1512 int adaptive_luma_loop_filter_skip;
1517 int skip_loop_filter_using_filt_error;
1525 int dual_sgr_penalty_level;
1528 int enable_sgr_ep_pruning;
1531 int disable_loop_restoration_chroma;
1534 int disable_loop_restoration_luma;
1540 int min_lr_unit_size;
1541 int max_lr_unit_size;
1547 int prune_wiener_based_on_src_var;
1554 int prune_sgr_based_on_wiener;
1557 int reduce_wiener_window_size;
1560 bool disable_wiener_filter;
1563 bool disable_sgr_filter;
1566 bool disable_wiener_coeff_refine_search;
1569 int use_downsampled_wiener_stats;
1570} LOOP_FILTER_SPEED_FEATURES;
1572typedef struct REAL_TIME_SPEED_FEATURES {
1574 int check_intra_pred_nonrd;
1581 int skip_intra_pred;
1588 int estimate_motion_for_var_based_partition;
1595 int nonrd_check_partition_merge_mode;
1598 int nonrd_check_partition_split;
1603 unsigned int mode_search_skip_flags;
1609 int nonrd_prune_ref_frame_search;
1612 int use_nonrd_pick_mode;
1615 int use_nonrd_altref_frame;
1618 int use_comp_ref_nonrd;
1622 int ref_frame_comp_nonrd[3];
1625 int use_real_time_ref_set;
1629 int short_circuit_low_temp_var;
1632 int reuse_inter_pred_nonrd;
1635 int num_inter_modes_for_tx_search;
1638 int use_nonrd_filter_search;
1641 int use_simple_rd_model;
1648 int hybrid_intra_pickmode;
1657 int prune_palette_search_nonrd;
1660 int source_metrics_sb_nonrd;
1664 OVERSHOOT_DETECTION_CBR overshoot_detection_cbr;
1667 int check_scene_detection;
1670 int rc_adjust_keyframe;
1673 int rc_compute_spatial_var_sc;
1677 int prefer_large_partition_blocks;
1680 int use_temporal_noise_estimate;
1686 int fullpel_search_step_param;
1693 int intra_y_mode_bsize_mask_nrd[BLOCK_SIZES];
1701 bool prune_hv_pred_modes_using_src_sad;
1704 int nonrd_aggressive_skip;
1716 int selective_cdf_update;
1719 int force_only_last_ref;
1723 int force_large_partition_blocks_intra;
1728 int use_fast_fixed_part;
1731 int increase_source_sad_thresh;
1734 int skip_tx_no_split_var_based_partition;
1738 int skip_newmv_mode_based_on_sse;
1745 int prune_inter_modes_with_golden_ref;
1748 int prune_inter_modes_wrt_gf_arf_based_on_sad;
1752 int prune_inter_modes_using_temp_var;
1759 int reduce_mv_pel_precision_highmotion;
1766 int reduce_mv_pel_precision_lowcomplex;
1769 BLOCK_SIZE prune_intra_mode_based_on_mv_range;
1773 int var_part_split_threshold_shift;
1780 int var_part_based_on_qidx;
1783 int gf_refresh_based_on_qp;
1796 int prune_idtx_nonrd;
1799 int dct_only_palette_nonrd;
1811 int thresh_active_maps_skip_lf_cdef;
1818 int part_early_exit_zeromv;
1824 int sad_based_adp_altref_lag;
1827 int partition_direct_merging;
1830 int tx_size_level_based_on_qstep;
1840 bool vbp_prune_16x16_split_using_min_max_sub_blk_var;
1855 int screen_content_cdef_filter_qindex_thresh;
1859 bool prune_compoundmode_with_singlecompound_var;
1864 bool frame_level_mode_cost_update;
1874 bool prune_h_pred_using_best_mode_so_far;
1885 bool enable_intra_mode_pruning_using_neighbors;
1894 bool prune_intra_mode_using_best_sad_so_far;
1899 bool check_only_zero_zeromv_on_large_blocks;
1902 bool disable_cdf_update_non_reference_frame;
1905 bool prune_compoundmode_with_singlemode_var;
1909 bool skip_compound_based_on_var;
1916 int set_zeromv_skip_based_on_source_sad;
1921 bool use_adaptive_subpel_search;
1927 bool enable_ref_short_signaling;
1931 bool check_globalmv_on_single_ref;
1936 bool increase_color_thresh_palette;
1939 int higher_thresh_scene_detection;
1942 int skip_newmv_flat_blocks_screen;
1945 int skip_encoding_non_reference_slide_change;
1949 int rc_faster_convergence_static;
1952 int skip_newmv_mode_sad_screen;
1953} REAL_TIME_SPEED_FEATURES;
static int prune_zero_mv_with_sse(const aom_variance_fn_ptr_t *fn_ptr, const MACROBLOCK *x, BLOCK_SIZE bsize, const HandleInterModeArgs *args, int prune_zero_mv_with_sse)
Prunes ZeroMV Search Using Best NEWMV's SSE.
Definition rdopt.c:2501
void av1_set_speed_features_framesize_independent(struct AV1_COMP *cpi, int speed)
Frame size independent speed vs quality trade off flags.
void av1_set_speed_features_qindex_dependent(struct AV1_COMP *cpi, int speed)
Q index dependent speed vs quality trade off flags.
void av1_set_speed_features_framesize_dependent(struct AV1_COMP *cpi, int speed)
Frame size dependent speed vs quality trade off flags.
INTERNAL_COST_UPDATE_TYPE
This enum decides internally how often to update the entropy costs.
Definition speed_features.h:346
@ INTERNAL_COST_UPD_OFF
Definition speed_features.h:347
@ INTERNAL_COST_UPD_SBROW_SET
Definition speed_features.h:349
@ INTERNAL_COST_UPD_SBROW
Definition speed_features.h:350
@ INTERNAL_COST_UPD_SB
Definition speed_features.h:351
@ INTERNAL_COST_UPD_TILE
Definition speed_features.h:348
INTER_SEARCH_EARLY_TERM_IDX
This enumeration defines inter search early termination index in non-rd path based on sse value.
Definition speed_features.h:390
@ EARLY_TERM_INDICES
Definition speed_features.h:401
@ EARLY_TERM_IDX_1
Definition speed_features.h:393
@ EARLY_TERM_IDX_4
Definition speed_features.h:399
@ EARLY_TERM_IDX_2
Definition speed_features.h:395
@ EARLY_TERM_DISABLED
Definition speed_features.h:391
@ EARLY_TERM_IDX_3
Definition speed_features.h:397
SIMPLE_MOTION_SEARCH_PRUNE_LEVEL
This enumeration defines a variety of simple motion search based partition prune levels.
Definition speed_features.h:358
@ QIDX_BASED_AGG_LVL1
Definition speed_features.h:364
@ SIMPLE_AGG_LVL3
Definition speed_features.h:363
@ TOTAL_SIMPLE_AGG_LVLS
Definition speed_features.h:367
@ SIMPLE_AGG_LVL1
Definition speed_features.h:361
@ SIMPLE_AGG_LVL0
Definition speed_features.h:360
@ TOTAL_AGG_LVLS
Definition speed_features.h:373
@ SIMPLE_AGG_LVL2
Definition speed_features.h:362
@ TOTAL_QINDEX_BASED_AGG_LVLS
Definition speed_features.h:369
PRUNE_MESH_SEARCH_LEVEL
This enumeration defines a variety of mesh search prune levels.
Definition speed_features.h:380
@ PRUNE_MESH_SEARCH_LVL_1
Definition speed_features.h:382
@ PRUNE_MESH_SEARCH_LVL_2
Definition speed_features.h:383
@ PRUNE_MESH_SEARCH_DISABLED
Definition speed_features.h:381
CDEF_PICK_METHOD
This enumeration defines a variety of CDEF pick methods.
Definition speed_features.h:164
@ CDEF_FAST_SEARCH_LVL2
Definition speed_features.h:167
@ CDEF_FAST_SEARCH_LVL5
Definition speed_features.h:171
@ CDEF_FAST_SEARCH_LVL1
Definition speed_features.h:166
@ CDEF_FULL_SEARCH
Definition speed_features.h:165
@ CDEF_PICK_FROM_Q
Definition speed_features.h:172
@ CDEF_FAST_SEARCH_LVL4
Definition speed_features.h:170
@ CDEF_FAST_SEARCH_LVL3
Definition speed_features.h:168
Top level encoder structure.
Definition encoder.h:2885
int speed
Definition encoder.h:3107
Definition speed_features.h:495
int disable_recon
Skips reconstruction by using source buffers for prediction.
Definition speed_features.h:512
int reduce_mv_step_param
Reduces the mv search window. By default, the initial search window is around MIN(MIN(dims),...
Definition speed_features.h:502
int skip_zeromv_motion_search
Skips the motion search centered on 0,0 mv.
Definition speed_features.h:517
int skip_motion_search_threshold
Skips the motion search when the zero mv has small sse.
Definition speed_features.h:507
Sequence/frame level speed vs quality features.
Definition speed_features.h:407
int adjust_num_frames_for_arf_filtering
Definition speed_features.h:462
int allow_sub_blk_me_in_tf
Definition speed_features.h:484
int disable_ref_frame_mvs
Definition speed_features.h:489
int second_alt_ref_filtering
Definition speed_features.h:452
int frame_parameter_update
Definition speed_features.h:409
int weight_calc_level_in_tf
Definition speed_features.h:476
MV_PREC_LOGIC high_precision_mv_usage
Definition speed_features.h:428
int disable_extra_sc_testing
Definition speed_features.h:447
int recode_tolerance
Definition speed_features.h:420
SUPERRES_AUTO_SEARCH_TYPE superres_auto_search_type
Definition speed_features.h:442
int static_segmentation
Definition speed_features.h:437
int accurate_bit_estimate
Definition speed_features.h:469
RECODE_LOOP_TYPE recode_loop
Definition speed_features.h:414
Top level speed vs quality trade off data struture.
Definition speed_features.h:1960
MV_SPEED_FEATURES mv_sf
Definition speed_features.h:1989
TPL_SPEED_FEATURES tpl_sf
Definition speed_features.h:1974
LOOP_FILTER_SPEED_FEATURES lpf_sf
Definition speed_features.h:2024
TX_SPEED_FEATURES tx_sf
Definition speed_features.h:2009
INTER_MODE_SPEED_FEATURES inter_sf
Definition speed_features.h:1994
RD_CALC_SPEED_FEATURES rd_sf
Definition speed_features.h:2014
PARTITION_SPEED_FEATURES part_sf
Definition speed_features.h:1984
GLOBAL_MOTION_SPEED_FEATURES gm_sf
Definition speed_features.h:1979
INTERP_FILTER_SPEED_FEATURES interp_sf
Definition speed_features.h:1999
FIRST_PASS_SPEED_FEATURES fp_sf
Definition speed_features.h:1969
INTRA_MODE_SPEED_FEATURES intra_sf
Definition speed_features.h:2004
WINNER_MODE_SPEED_FEATURES winner_mode_sf
Definition speed_features.h:2019
REAL_TIME_SPEED_FEATURES rt_sf
Definition speed_features.h:2029
HIGH_LEVEL_SPEED_FEATURES hl_sf
Definition speed_features.h:1964